home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / WORDPAD.PAK / DATEDIAL.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  56 lines

  1. // datedial.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CDateDialog dialog
  15.  
  16. class CDateDialog : public CCSDialog
  17. {
  18. // Construction
  19. public:
  20.     CDateDialog(CWnd* pParent = NULL);   // standard constructor
  21.  
  22. // Attributes
  23.     static SYSTEMTIME m_time;
  24.     static LCID m_id;
  25.     static CListBox* m_pListBox;
  26.     static BOOL CALLBACK DateFmtEnumProc(LPTSTR lpszFormatString);
  27.     static BOOL CALLBACK TimeFmtEnumProc(LPTSTR lpszFormatString);
  28.  
  29. // Dialog Data
  30.     //{{AFX_DATA(CDateDialog)
  31.     enum { IDD = IDD_DATEDIALOG };
  32.     CListBox    m_listBox;
  33.     CString    m_strSel;
  34.     //}}AFX_DATA
  35.  
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CDateDialog)
  40.     protected:
  41.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  42.     //}}AFX_VIRTUAL
  43.  
  44. // Implementation
  45. protected:
  46.     static const DWORD m_nHelpIDs[];
  47.     virtual const DWORD* GetHelpIDs() {return m_nHelpIDs;}
  48.  
  49.     // Generated message map functions
  50.     //{{AFX_MSG(CDateDialog)
  51.     virtual BOOL OnInitDialog();
  52.     afx_msg void OnDblclkDatedialogList();
  53.     //}}AFX_MSG
  54.     DECLARE_MESSAGE_MAP()
  55. };
  56.